* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/* HERO SECTION */
.simple-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* BREADCRUMB */
.breadcrumb-bar {
    position: absolute;
    width: 100%;
    bottom: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    padding: 16px 25px;
    font-size: 18px;
    z-index: 10;
}

.breadcrumb-bar a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-bar span {
    margin: 0 5px;
}

.hero-img {
    height: 460px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-attachment: fixed;
}

/* TEXT CENTER */
.hero-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 180px 20px 0px;
    background: rgba(0, 0, 0, 0.55); /* light overlay */
}

.hero-text h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ff7a2f;
}

.hero-text p {
    font-size: 35px;
    font-weight: 400;
    max-width: 90%;
}

/* Images */
.hero-1 {
    background-image: url("../../../images/home/banner 2_compressed.webp");
}
.hero-2 {
    background-image: url("../../../images/home/banner 2_compressed.webp");
}
.hero-3 {
    background-image: url("../../../images/home/banner 2_compressed.webp");
}

/* Responsive */
@media (max-width: 768px) {
    .hero-img {
        height: 260px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 15px;
    }
}

/* ARROWS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-img {
        height: 260px;
    }

    .breadcrumb-bar {
        font-size: 12px;
        left: 15px;
        bottom: 15px;
    }
}

/* ================= ARROWS ================= */
.custom-arrow {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    color: #ff7a2f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

/* Hover Effect */
.custom-arrow:hover {
    background: #ff7a2f;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 122, 47, 0.6);
}

/* Position Fix */
.carousel-control-prev,
.carousel-control-next {
    width: auto;
    opacity: 1;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .custom-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Swabihman specific styles can go here */

body {
    background: #fff;
}
/* Swabhiman Section Styles */
.swabhiman-section {
    background: linear-gradient(135deg, #fff0f6 0%, #f3e7ff 100%);
    padding: 60px 0 40px 0;
    text-align: center;
    font-family: "Segoe UI", Arial, sans-serif;
    overflow: hidden;
}
.swabhiman-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #22223b;
    margin-bottom: 0.5rem;
}
.swabhiman-header h1 span {
    color: #b5179e;
}
.swabhiman-header p {
    color: #444;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.swabhiman-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}
.swabhiman-buttons .primary {
    background: #b5179e;
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.swabhiman-buttons .primary:hover {
    background: #72026c;
}
.swabhiman-buttons .secondary {
    background: #fff;
    color: #b5179e;
    border: 2px solid #b5179e;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s;
}
.swabhiman-buttons .secondary:hover {
    background: #b5179e;
    color: #fff;
}
.swabhiman-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}
.stat-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(181, 23, 158, 0.08);
    padding: 2rem 2.5rem 1.5rem 2.5rem;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.stat-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(181, 23, 158, 0.15);
}
.stat-icon {
    font-size: 2.5rem;
    color: #b5179e;
    margin-bottom: 0.7rem;
}
.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #22223b;
}
.stat-label {
    color: #444;
    font-size: 1.1rem;
    margin-top: 0.3rem;
}
@media (max-width: 900px) {
    .swabhiman-stats {
        flex-direction: column;
        align-items: center;
    }
    .stat-card {
        width: 80%;
        margin-bottom: 1.5rem;
    }
}
@media (max-width: 600px) {
    .swabhiman-header h1 {
        font-size: 2rem;
    }
    .swabhiman-section {
        padding: 30px 0 20px 0;
    }
    .stat-card {
        padding: 1.2rem 1rem 1rem 1rem;
    }
}

/* About Swabhiman Section */
.about-swabhiman-section {
    padding: 60px 0 40px 0;
    background: #fff;
    text-align: center;
    overflow: hidden;
}
.about-swabhiman-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #22223b;
    margin-bottom: 0.5rem;
}
.about-swabhiman-section .about-desc {
    color: #444;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}
.about-mission-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.about-mission-left {
    flex: 1 1 350px;
    text-align: left;
}
.about-mission-left h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #22223b;
    margin-bottom: 1rem;
}
.mission-list {
    list-style: none;
    padding: 0;
}
.mission-list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 1.1em;
    color: #22223b;
    font-size: 1.1rem;
}
.mission-list li:before {
    content: "\2022";
    color: #b5179e;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: 0.1em;
}
.about-mission-right {
    flex: 1 1 350px;
    display: flex;
    justify-content: center;
}
.empowering-card {
    background: linear-gradient(135deg, #fff0f6 0%, #f3e7ff 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(181, 23, 158, 0.08);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 400px;
    text-align: center;
}
.empowering-icon {
    background: linear-gradient(135deg, #b5179e 0%, #72026c 100%);
    color: #fff;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    margin: 0 auto 1.2rem auto;
}
.empowering-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #22223b;
    margin-bottom: 0.7rem;
}
.empowering-card p {
    color: #444;
    font-size: 1.08rem;
}
@media (max-width: 900px) {
    .about-mission-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .about-mission-left,
    .about-mission-right {
        width: 100%;
        text-align: center;
    }
    .about-mission-left {
        text-align: left;
    }
}
@media (max-width: 600px) {
    .about-swabhiman-section {
        padding: 30px 0 20px 0;
    }
    .about-swabhiman-section h2 {
        font-size: 1.5rem;
    }
    .empowering-card {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
    }
}

/* Additional Training Programs Section */
.additional-training-section {
    background: linear-gradient(135deg, #fff0f6 0%, #f3e7ff 100%);
    border-radius: 28px;
    max-width: 1200px;
    margin: 0px auto;
    padding: 40px 20px 32px 20px;
    text-align: center;
    overflow: hidden;
}
.add-sec {
    padding: 40px 0px !important;
}

.additional-training-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #22223b;
    margin-bottom: 2rem;
}
.training-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.training-program {
    background: #fff;
    border-radius: 12px;
    padding: 1.2rem 0.5rem;
    font-size: 1.15rem;
    color: #22223b;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(181, 23, 158, 0.06);
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}
.training-program:hover {
    box-shadow: 0 6px 24px rgba(181, 23, 158, 0.13);
    transform: translateY(-4px) scale(1.03);
}

/* Success Stories Section */
.success-stories-section {
    background: linear-gradient(135deg, #fff0f6 0%, #f3e7ff 100%);
    padding: 60px 0 40px 0;
    text-align: center;
    margin-top: 40px;
    overflow: hidden;
}
.success-stories-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #22223b;
    margin-bottom: 0.5rem;
}
.success-stories-section .success-desc {
    color: #444;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}
.success-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}
.success-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(181, 23, 158, 0.08);
    padding: 2rem 2.5rem 1.5rem 2.5rem;
    min-width: 220px;
    max-width: 260px;
    text-align: center;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.success-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(181, 23, 158, 0.15);
}
.success-number {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.success-number.pink {
    color: #b5179e;
}
.success-number.purple {
    color: #a259e6;
}
.success-number.blue {
    color: #3a86ff;
}
.success-number.green {
    color: #43aa8b;
}
.success-label {
    color: #444;
    font-size: 1.1rem;
}
@media (max-width: 900px) {
    .success-stats {
        flex-direction: column;
        align-items: center;
    }
    .success-card {
        width: 80%;
        margin-bottom: 1.5rem;
    }
    .training-programs-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .additional-training-section {
        padding: 20px 5px 16px 5px;
    }
    .success-stories-section {
        padding: 30px 0 20px 0;
    }
    .success-stories-section h2 {
        font-size: 1.5rem;
    }
    .success-card {
        padding: 1.2rem 1rem 1rem 1rem;
    }
}

/* Training Highlights Section */
.training-highlights-section {
    background: linear-gradient(135deg, #fff0f6 0%, #f3e7ff 100%);
    padding: 40px 0 40px 0;
    text-align: center;
}
.training-highlights-card {
    background: #fff;
    border-radius: 28px;
    max-width: 1400px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(181, 23, 158, 0.1);
    padding: 36px 24px 32px 24px;
}
.training-highlights-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #22223b;
    margin-bottom: 2.5rem;
}
.highlights-grid {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}
.highlight-item {
    flex: 1 1 260px;
    max-width: 350px;
    min-width: 220px;
    margin: 0 1rem;
    text-align: center;
}
.highlight-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    margin: 0 auto 1.2rem auto;
}
.pink-bg {
    background: #ffe0f0;
    color: #d72660;
}
.purple-bg {
    background: #f3e7ff;
    color: #a259e6;
}
.blue-bg {
    background: #e0eaff;
    color: #3a86ff;
}
.highlight-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #22223b;
    margin-bottom: 0.5rem;
}
.highlight-item p {
    color: #444;
    font-size: 1.05rem;
}
@media (max-width: 900px) {
    .highlights-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .highlight-item {
        margin: 0 0 1.5rem 0;
        max-width: 90%;
    }
}
@media (max-width: 600px) {
    .training-highlights-card {
        padding: 18px 5px 16px 5px;
    }
    .training-highlights-card h2 {
        font-size: 1.3rem;
    }
    .highlight-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 40px 0;
    background: #faf7f7;
    text-align: center;
    overflow: hidden;
}
.gallery-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}
.gallery-desc {
    color: #666;
    margin-bottom: 30px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
